Function Reference

_AD_VersionInfo

Returns an array of information about the AD.au3 UDF.

#Include <AD.au3>
_AD_VersionInfo()

 

Parameters

None.

 

Return Value

Success: one-dimensional one based array with the following information:
    1 - Release Type (T=Test or V=Production)
    2 - Major Version
    3 - Minor Version
    4 - Sub Version
    5 - Release Date (YYYYMMDD)
    6 - AutoIt version required
    7 - List of authors separated by ","
    8 - List of contributors separated by ","

 

Remarks

Based on function _IE_VersionInfo written bei Dale Hohm

 

Related

 

Example


#AutoIt3Wrapper_AU3Check_Parameters= -d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#AutoIt3Wrapper_AU3Check_Stop_OnWarning=Y

#include <AD.au3>

;------------------------------------------------------------------------------------------------------------------------------------------------
; Example 1 - Display the version info for this UDF
;------------------------------------------------------------------------------------------------------------------------------------------------
Global $aVersionInfo = _AD_VersionInfo()
Global $aResult[9][2] = [[8,2],["Release type", $aVersionInfo[1]],["Major version", $aVersionInfo[2]],["Minor version", $aVersionInfo[3]], _
    ["Sub version", $aVersionInfo[4]],["Release date", $aVersionInfo[5]],["AutoIt version required", $aVersionInfo[6]],["Authors", $aVersionInfo[7]], _
    ["Contributors", $aVersionInfo[8]]]
_ArrayDisplay($aResult, "Active Directory Functions - Version Info for the UDF")